More errors!!! & still working on it

MY UPDATE(s) TO LIQUIFY_0.0.4.zip FOR VERSION 14 OF FACTORIO 



"Version" incompatibility error (Fixed)

Fix: Edited - Liquify_0.0.4/info.json

Inserted @ line 4:

  "factorio_version": "0.14",


Liquify_0.0.4/info.json -  now reads starting @ line 1:

{
  "name": "Liquify",
  "version": "0.0.4",
  "factorio_version": "0.14",
  "title": "Liquify",
  "author": "The_Evil_Pickle",
  "homepage": "www.example.com",
  "dependencies": ["base >= 0.12.15"],
  "description": "Liquify stuff"
}


 
6 "ID name" errors - (Fixed)

Factorio-current.log

Error Util.cpp:57: Error in assignID, item with name 'basic-bullet-magazine' does not exist.
Error Util.cpp:57: Error in assignID, item with name 'piercing-bullet-magazine' does not exist.
Error Util.cpp:57: Error in assignID, item with name 'straight-rail' does not exist.
Error Util.cpp:57: Error in assignID, item with name 'curved-rail' does not exist.
Error Util.cpp:57: Error in assignID, item with name 'basic-transport-belt' does not exist.
Error Util.cpp:57: Error in assignID, item with name 'basic-inserter' does not exist.



10 "ID name" changes - Liquify_0.0.4/prototypes/

recipe.lua - Edited mod "ID name calls" to match Factorio game "base mod" ID names

@ line 347: From "basic-bullet-magazine" to "firearm-magazine"
@ line 351: From "__base__/graphics/icons/basic-bullet-magazine.png" to 
"__base__/graphics/icons/firearm-magazine.png"

@ line 642: From "piercing-bullet-magazine" to "piercing-round-magazine"
@ line 646: From "__base__/graphics/icons/piercing-bullet-magazine.png" to 
"__base__/graphics/icons/piercing-rounds-magazine.png"

@ line 784: From "straight-rail" to "rail"
@ line 788: From "__base__/graphics/icons/straight-rail.png" to 
"__base__/graphics/icons/rail.png"

@ line 864: From "basic-transport-belt" to "transport-belt"
@ line 868: From "__base__/graphics/icons/basic-transport-belt.png" to 
"__base__/graphics/icons/transport-belt.png"

@ line 886: From "basic-inserter" to "inserter"
@ line 890: From "__base__/graphics/icons/basic-inserter.png" to 
"__base__/graphics/icons/inserter.png"



2 Changes to "curved-rail" code for Liquify_0.0.4/prototypes/

recipe.lua - Commented out line(s) 792-813

--[[	COMMENTED OUT FOR VERSION 14 OF FACTORIO BECAUSE "CURVED RAILS" WERE REMOVED FROM "BASE MOD"
    {
	type = "recipe",
    name = "c-rail-casting",
    category = "advanced-casting",
    enabled = false,
    energy_required = 0.35,
    ingredients =
    {
      {type="fluid", name="molten-iron", amount=1},
	  {type="fluid", name="molten-steel", amount=2},
	  {type="fluid", name="lava", amount=2}
    },
    results=
    {
      {type="item", name="curved-rail", amount=1}
    },
    icon = "__base__/graphics/icons/curved-rail.png",
    subgroup = "cast-misc",
    --order = "a[oil-processing]-a[basic-oil-processing]"
  },
--]]



technology.lua - Commented out line(s) 241-246

--[[	COMMENTED OUT FOR VERSION 14 OF FACTORIO BECAUSE "CURVED RAILS" WERE REMOVED
      {
        type = "unlock-recipe",
        recipe = "c-rail-casting"
      },
--]]